home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / pcw255.arc / M_PCWRIT.MSC < prev    next >
Encoding:
Text File  |  1980-01-01  |  4.0 KB  |  131 lines

  1. ;
  2. ;    PC-Write Pop-up Menu Configuration
  3. ;
  4. Comment   ("Configured for PC-Write (special thanks to Bruce Gregory)")
  5.  
  6.  
  7. ;    Parameters
  8. ;
  9. Sensitivity    (4,6)          ;(Xinc, Yinc)
  10. Hysteresis     (2,2)          ;(AutoX, AutoY)
  11. ReverseVideo   (Yes)          ;Menu is displayed in reverse video
  12. FixedMenu      (no)           ;Menu is not in a fixed position
  13. EnableBeep     (No)           ;Beeps if wrong button pressed with menu up
  14. ;
  15. ;    Cursor Definitions
  16. ;
  17. ArrowKeys: Cursor
  18. (
  19.      Left      ([Left])
  20.      Right     ([Right])
  21.      Up        ([Up])
  22.      Down      ([Down])
  23. )
  24.  
  25. ;
  26. ;    Button Definitions
  27. ;
  28. LBB: Button(Menu(Block))      ;Left button, Block Menu
  29. LBP: Button(Menu(Page))       ;Left button, Page Menu
  30. MBE: Button(Menu(Edit))       ;Middle button, Edit Menu
  31. MBF: Button(Menu(File))       ;Middle button, File Menu
  32. RBM: Button(Menu(Move))       ;Right button, Move Menu
  33. RBS: Button(Menu(Search))     ;Right button, Search Menu
  34. ;
  35. ;     Menu Definitions
  36. ;
  37. Block: Menu
  38. (
  39. Title("Block")
  40. Item ("Page Menu",            Menu(Page), Button(LBP))
  41. Item ("Mark All",             Keys([a-F5]))
  42. Item ("Clear Marks",          Keys([F5]))
  43. Item ("Mark Beg/End",         Keys([F6]))
  44. Item ("Del Marked",           Keys([F4] [F4] [F5]))
  45. Item ("Move Marked",          Keys([F6] [F5]))
  46. Item ("Copy Marked",          Keys([F3] [F5]))
  47. Item ("Copy to File",         Keys([a-F6] [a-F6]))
  48. Item ("Un-Delete",            Keys([a-F4] [F5]))
  49. )
  50. ;
  51. Page: Menu
  52. (
  53. Title("Page")
  54. Item ("Block Menu",           Menu(Block), Button(LBB))
  55. Item ("Ruler Line",           Keys([F2]))
  56. Item ("Read Ruler",           Keys([a-F2]))
  57. Item ("Left Margin",          Keys([c-[]))
  58. Item ("Right Margin",         Keys([c-]]))
  59. Item ("Break Pages",          Keys([a-F1] [F2]))
  60. Item ("Next Break",           Keys([F9] [c-P] [enter] [c-L]))
  61. Item ("Prev Break",           Keys([F9] [c-P] [enter] [c-O]))
  62. Item ("Location",             Keys([a-F9]))
  63. )
  64. ;                    
  65. Edit: Menu
  66. (
  67. Title("Edit")
  68. Item ("File Menu",            Menu(File), Button(MBF))
  69. Item ("Reformat",             Keys([F7]))
  70. Item ("Justify On",           Keys([s-F7]))
  71. Item ("Upper/Lower",          Keys([F8]))
  72. Item ("Center Line",          Keys([s-F8]))
  73. Item ("Del Word <-",          Keys([F4] [c-left] [F4]))
  74. Item ("Del Word ->",          Keys([F4] [c-right] [F4]))
  75. Item ("Del Line End",         Keys([F4] [end] [F4]))
  76. Item ("Del All Line",         Keys([home] [F4] [down] [F4]))
  77. )
  78. ;
  79. File: Menu
  80. (
  81. Title("File")
  82. Item ("Edit Menu",            Menu(Edit),Button(MBE))
  83. Item ("Save File",            Keys([F1] [F3]))
  84. Item ("Save-Exit",            Keys([F1] [F2]))
  85. Item ("Save-Shell",           Keys([F1] [F4]))
  86. Item ("Cancel-Exit",          Keys([F1] [Esc] [F2]))
  87. Item ("Cancel-Shell",         Keys([F1] [Esc] [F4]))
  88. Item ("Rename File",          Keys([F1] [F5]))
  89. Item ("Switch Files",         Keys([F1] [F6]))
  90. Item ("Insert File",          Keys([a-F3]))
  91. )
  92. ;
  93. Move: Menu
  94. (
  95. Title("Move")               
  96. Item ("Search Menu",          Menu(Search), Button(RBS))
  97. Item ("Beginning",            Keys([a-=]))
  98. Item ("End of Text",          Keys([a--]))
  99. Item ("Page Ahead",           Keys([c-R]))
  100. Item ("Page Back",            Keys([c-C]))
  101. Item ("Paragr Ahead",         Keys([c-PgDn]))
  102. Item ("Paragr Back",          Keys([c-PgUp]))
  103. Item ("Set Marker",           Keys([c-home]))
  104. Item ("GoTo Marker",          Keys([c-end]))
  105. )
  106. ;
  107. Search: Menu
  108. (
  109. Title("Search")
  110. Item ("Move Menu",            Menu(Move), Button(RBM))
  111. Item ("From Start",           Keys([a-=]))
  112. Item ("From End",             Keys([a--]))
  113. Item ("Set Find",             Keys([F9]))
  114. Item ("Set Replace",          Keys([F9][F10]))
  115. Item ("Search Ahead",         Keys([c-L]))
  116. Item ("Search Back",          Keys([c-O]))
  117. Item ("Replace Once",         Keys([F10]))
  118. Item ("Replace All",          Keys([a-F10] [F1]))
  119. )
  120. ;
  121. ;    Mouse Definition        
  122. ;
  123. Mouse
  124. (
  125.      Left      (LBB) 
  126.      Middle    (MBE) 
  127.      Right     (RBM) 
  128.      Cursor    (ArrowKeys) 
  129. )
  130.  
  131.